;; ; (if> 2 3 (print 'ciao) (print 'baby)) (define-macro (if> x y args . elseargs) `(if (> ,x ,y) ,args ,@elseargs))